summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-11-01 18:50:50 +0100
committerGitHub <noreply@github.com>2023-11-01 18:50:50 +0100
commit7b10ceda025c81171761b0de442f23030db6b95f (patch)
treeaced1419f58e63bebbcbf939b6929f827fa7b37d
parentMerge pull request #11937 from t895/reorganize-options (diff)
parentandroid: Default to player number 0 if we get an input from an unrecognized controller (diff)
downloadyuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar.gz
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar.bz2
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar.lz
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar.xz
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.tar.zst
yuzu-7b10ceda025c81171761b0de442f23030db6b95f.zip
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InputHandler.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InputHandler.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InputHandler.kt
index fc6a8b5cb..47bde5081 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InputHandler.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InputHandler.kt
@@ -68,7 +68,7 @@ object InputHandler {
private fun getPlayerNumber(index: Int, deviceId: Int = -1): Int {
var deviceIndex = index
if (deviceId != -1) {
- deviceIndex = controllerIds[deviceId]!!
+ deviceIndex = controllerIds[deviceId] ?: 0
}
// TODO: Joycons are handled as different controllers. Find a way to merge them.